home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 October: Mac OS SDK / Dev.CD Oct 96 SDK / Dev.CD Oct 96 SDK2.toast / Development Kits (Disc 2) / OpenDoc Development Framework / Developer University / DUProjects / GraphicsGX / Sources / PartInfo.fr < prev    next >
Encoding:
Text File  |  1996-08-16  |  1.6 KB  |  83 lines  |  [TEXT/CWIE]

  1. //========================================================================================
  2. //
  3. //    File:                PartInfo.fr
  4. //    Release Version:    $ ODF 1 $
  5. //
  6. //    Copyright:    (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
  7. //
  8. //========================================================================================
  9.  
  10. #ifndef FWRESFIL_K
  11. #include "FWResFil.k"
  12. #endif
  13.  
  14. #ifndef FWPART_FR
  15. #include "FWPart.fr"
  16. #endif
  17.  
  18. #ifndef DEFINES_K
  19. #include "Defines.k"
  20. #endif
  21.  
  22. #ifndef BINDING_K
  23. #include "Binding.k"
  24. #endif
  25.  
  26. #ifndef SLGCONST_K
  27. #include "SLGConst.k" 
  28. #endif
  29.  
  30. #ifndef FWVIEWS_FR
  31. #include "FWViews.fr"
  32. #endif
  33.  
  34. //----------------------------------------------------------------------------------------
  35. //    PartInfo Resource
  36. //----------------------------------------------------------------------------------------
  37.  
  38. resource FW_RPartInfo(kPartInfoID)
  39. {
  40.     // ----- Icon ID
  41.     kPartIconID,
  42.     
  43.     // ----- Part Name
  44.     kGraphicsGXKindUserString,
  45.     
  46.     // ----- PartKind
  47.     kGraphicsGXKind
  48. };
  49.  
  50. //----------------------------------------------------------------------------------------
  51. //    About Resource
  52. //----------------------------------------------------------------------------------------
  53.  
  54. resource FW_RAbout(kAbout)
  55. {
  56.     // ----- Icon ID
  57.     130,                                                        
  58.     // ----- Part Name
  59.     FW_RStyledText
  60.     (
  61.         FW_FIX(18), 
  62.         FW_kBold, 
  63.         "times", 
  64.         "GraphicsGX"
  65.     ),
  66.     // ----- Version Number
  67.     FW_RStyledText
  68.     (
  69.         FW_FIX(9),
  70.         FW_kPlain,
  71.         "geneva",
  72.         "ODF Release 1"
  73.     ),
  74.     // ----- Credits
  75.     FW_RStyledText
  76.     (
  77.         FW_FIX(9),
  78.         FW_kPlain,
  79.         "geneva",
  80.         "GraphicsGX....\r\r\r\r\r\r"                                    
  81.         "Written by Dave Wilson.\r© 1993-96 Apple Computer, Inc., all right reserved."
  82.     )
  83. };